+2001-12-04 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtkmain.c
+ * gtk/queryimmodules.c: g_module_symbol takes a gpointer *, not just
+ a gpointer.
+
+ * gtk/gtkwidget.c (gtk_widget_push_composite_child): minor cosmetic
+ correction to docs.
+
+ * demos/gtk-demo/item_factory.c: add GTK_WINDOW() cast
+
2001-12-04 Havoc Pennington <hp@redhat.com>
* gtk/gtktextbtree.c (gtk_text_btree_remove_tag_info): remove
+2001-12-04 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtkmain.c
+ * gtk/queryimmodules.c: g_module_symbol takes a gpointer *, not just
+ a gpointer.
+
+ * gtk/gtkwidget.c (gtk_widget_push_composite_child): minor cosmetic
+ correction to docs.
+
+ * demos/gtk-demo/item_factory.c: add GTK_WINDOW() cast
+
2001-12-04 Havoc Pennington <hp@redhat.com>
* gtk/gtktextbtree.c (gtk_text_btree_remove_tag_info): remove
+2001-12-04 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtkmain.c
+ * gtk/queryimmodules.c: g_module_symbol takes a gpointer *, not just
+ a gpointer.
+
+ * gtk/gtkwidget.c (gtk_widget_push_composite_child): minor cosmetic
+ correction to docs.
+
+ * demos/gtk-demo/item_factory.c: add GTK_WINDOW() cast
+
2001-12-04 Havoc Pennington <hp@redhat.com>
* gtk/gtktextbtree.c (gtk_text_btree_remove_tag_info): remove
+2001-12-04 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtkmain.c
+ * gtk/queryimmodules.c: g_module_symbol takes a gpointer *, not just
+ a gpointer.
+
+ * gtk/gtkwidget.c (gtk_widget_push_composite_child): minor cosmetic
+ correction to docs.
+
+ * demos/gtk-demo/item_factory.c: add GTK_WINDOW() cast
+
2001-12-04 Havoc Pennington <hp@redhat.com>
* gtk/gtktextbtree.c (gtk_text_btree_remove_tag_info): remove
+2001-12-04 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtkmain.c
+ * gtk/queryimmodules.c: g_module_symbol takes a gpointer *, not just
+ a gpointer.
+
+ * gtk/gtkwidget.c (gtk_widget_push_composite_child): minor cosmetic
+ correction to docs.
+
+ * demos/gtk-demo/item_factory.c: add GTK_WINDOW() cast
+
2001-12-04 Havoc Pennington <hp@redhat.com>
* gtk/gtktextbtree.c (gtk_text_btree_remove_tag_info): remove
+2001-12-04 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtkmain.c
+ * gtk/queryimmodules.c: g_module_symbol takes a gpointer *, not just
+ a gpointer.
+
+ * gtk/gtkwidget.c (gtk_widget_push_composite_child): minor cosmetic
+ correction to docs.
+
+ * demos/gtk-demo/item_factory.c: add GTK_WINDOW() cast
+
2001-12-04 Havoc Pennington <hp@redhat.com>
* gtk/gtktextbtree.c (gtk_text_btree_remove_tag_info): remove
+2001-12-04 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtkmain.c
+ * gtk/queryimmodules.c: g_module_symbol takes a gpointer *, not just
+ a gpointer.
+
+ * gtk/gtkwidget.c (gtk_widget_push_composite_child): minor cosmetic
+ correction to docs.
+
+ * demos/gtk-demo/item_factory.c: add GTK_WINDOW() cast
+
2001-12-04 Havoc Pennington <hp@redhat.com>
* gtk/gtktextbtree.c (gtk_text_btree_remove_tag_info): remove
item_factory = gtk_item_factory_new (GTK_TYPE_MENU_BAR, "<main>", accel_group);
g_object_set_data_full (G_OBJECT (window), "<main>",
item_factory, (GDestroyNotify) g_object_unref);
- gtk_window_add_accel_group (window, accel_group);
+ gtk_window_add_accel_group (GTK_WINDOW (window), accel_group);
gtk_window_set_title (GTK_WINDOW (window), "Item Factory");
gtk_container_set_border_width (GTK_CONTAINER (window), 0);
gtk_item_factory_create_items (item_factory, nmenu_items, menu_items, NULL);
{
module = find_module (module_path, name);
if (module &&
- g_module_symbol (module, "gtk_module_init", (gpointer*) &modinit_func) &&
+ g_module_symbol (module, "gtk_module_init", (gpointer *) &modinit_func) &&
modinit_func)
{
if (!g_slist_find (gtk_modules, modinit_func))
* scrolled_window->hscrollbar = gtk_hscrollbar_new (hadjustment);
* gtk_widget_set_composite_name (scrolled_window->hscrollbar, "hscrollbar");
* gtk_widget_pop_composite_child ();
- gtk_widget_set_parent (scrolled_window->hscrollbar,
+ * gtk_widget_set_parent (scrolled_window->hscrollbar,
* GTK_WIDGET (scrolled_window));
* gtk_widget_ref (scrolled_window->hscrollbar);
* </programlisting>
}
if (module &&
- g_module_symbol (module, "im_module_list", (gpointer)&list) &&
- g_module_symbol (module, "im_module_init", (gpointer)&init) &&
- g_module_symbol (module, "im_module_exit", (gpointer)&exit) &&
- g_module_symbol (module, "im_module_create", (gpointer)&create))
+ g_module_symbol (module, "im_module_list", (gpointer *) &list) &&
+ g_module_symbol (module, "im_module_init", (gpointer *) &init) &&
+ g_module_symbol (module, "im_module_exit", (gpointer *) &exit) &&
+ g_module_symbol (module, "im_module_create", (gpointer *) &create))
{
const GtkIMContextInfo **contexts;
guint n_contexts;